home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / cris / arch-v32 / boot / compressed / decompress.lds next >
Encoding:
Text File  |  2008-12-24  |  337 b   |  31 lines

  1. /*#OUTPUT_FORMAT(elf32-us-cris) */
  2. OUTPUT_ARCH (crisv32)
  3.  
  4. MEMORY
  5.     {
  6.     dram : ORIGIN = 0x40700000,
  7.            LENGTH = 0x00100000
  8.     }
  9.  
  10. SECTIONS
  11. {
  12.     .text :
  13.     {
  14.         _stext = . ;
  15.         *(.text)
  16.         *(.rodata)
  17.         *(.rodata.*)
  18.         _etext = . ;
  19.     } > dram
  20.     .data :
  21.     {
  22.         *(.data)
  23.         _edata = . ;
  24.     } > dram
  25.     .bss :
  26.     {
  27.         *(.bss)
  28.         _end = ALIGN( 0x10 ) ;
  29.     } > dram
  30. }
  31.